home *** CD-ROM | disk | FTP | other *** search
/ Aminet 21 / Aminet 21 (1997)(GTI - Schatztruhe)[!][Oct 1997].iso / Aminet / gfx / show / gs_src_gs.lha / gs5.03 / gp_unix.c < prev    next >
C/C++ Source or Header  |  1997-01-16  |  5KB  |  166 lines

  1. /* Copyright (C) 1989, 1995, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gp_unix.c */
  20. /* Unix-specific routines for Ghostscript */
  21. #include "string_.h"
  22. #include "time_.h"
  23. #include "gx.h"
  24. #include "gsexit.h"
  25. #include "gp.h"
  26.  
  27. /*
  28.  * Because of inconsistent (and sometimes incorrect) header files,
  29.  * we must omit the argument list for popen.
  30.  */
  31. extern FILE *popen( /* P2(const char *, const char *) */ );
  32. extern int pclose(P1(FILE *));
  33. /*
  34.  * This is the only place in Ghostscript that calls 'exit'.  Including
  35.  * <stdlib.h> is overkill, but that's where it's declared on ANSI systems.
  36.  * We don't have any way of detecting whether we have a standard library
  37.  * (some GNU compilers perversely define __STDC__ but don't provide
  38.  * an ANSI-compliant library), so we check __PROTOTYPES__ and
  39.  * hope for the best.  We pick up getenv at the same time.
  40.  */
  41. #ifdef __PROTOTYPES__
  42. #  include <stdlib.h>        /* for exit and getenv */
  43. #else
  44. extern void exit(P1(int));
  45. extern char *getenv(P1(const char *));
  46. #endif
  47.  
  48. /* Do platform-dependent initialization. */
  49. void
  50. gp_init(void)
  51. {
  52. }
  53.  
  54. /* Do platform-dependent cleanup. */
  55. void
  56. gp_exit(int exit_status, int code)
  57. {
  58. }
  59.  
  60. /* Exit the program. */
  61. void
  62. gp_do_exit(int exit_status)
  63. {    exit(exit_status);
  64. }
  65.  
  66. /* ------ Miscellaneous ------ */
  67.  
  68. /* Get the string corresponding to an OS error number. */
  69. /* Unix systems support this so inconsistently that we don't attempt */
  70. /* to figure out whether it's available. */
  71. const char *
  72. gp_strerror(int errnum)
  73. {    return NULL;
  74. }
  75.  
  76. /* ------ Date and time ------ */
  77.  
  78. /* Read the current time (in seconds since Jan. 1, 1970) */
  79. /* and fraction (in nanoseconds). */
  80. void
  81. gp_get_realtime(long *pdt)
  82. {    struct timeval tp;
  83.  
  84. #if gettimeofday_no_timezone            /* older versions of SVR4 */
  85.     {    if ( gettimeofday(&tp) == -1 )
  86.           {    lprintf("Ghostscript: gettimeofday failed!\n");
  87.             gs_exit(1);
  88.           }
  89.     }
  90. #else                        /* All other systems */
  91.     {    struct timezone tzp;
  92.         if ( gettimeofday(&tp, &tzp) == -1 )
  93.           {    lprintf("Ghostscript: gettimeofday failed!\n");
  94.             gs_exit(1);
  95.           }
  96.     }
  97. #endif
  98.  
  99.     /* tp.tv_sec is #secs since Jan 1, 1970 */
  100.     pdt[0] = tp.tv_sec;
  101.  
  102.     /* Some Unix systems (e.g., Interactive 3.2 r3.0) return garbage */
  103.     /* in tp.tv_usec.  Try to filter out the worst of it here. */
  104.     pdt[1] = tp.tv_usec >= 0 && tp.tv_usec < 1000000 ? tp.tv_usec*1000 : 0;
  105.  
  106. #ifdef DEBUG_CLOCK
  107.     printf("tp.tv_sec = %d  tp.tv_usec = %d  pdt[0] = %ld  pdt[1] = %ld\n",
  108.         tp.tv_sec, tp.tv_usec, pdt[0], pdt[1]);
  109. #endif
  110. }
  111.  
  112. /* Read the current user CPU time (in seconds) */
  113. /* and fraction (in nanoseconds).  */
  114. void
  115. gp_get_usertime(long *pdt)
  116. {
  117. #if use_times_for_usertime
  118.     struct tms tms;
  119.     long ticks;
  120.  
  121.     static long ticks_per_sec = 0;
  122.     if ( !ticks_per_sec )        /* not initialized yet */
  123.       ticks_per_sec = CLK_TCK;
  124.  
  125.     times(&tms);
  126.     ticks = tms.tms_utime + tms.tms_stime + tms.tms_cutime + tms.tms_cstime;
  127.     pdt[0] = ticks / ticks_per_sec;
  128.     pdt[1] = (ticks % ticks_per_sec) * (1000000000 / ticks_per_sec);
  129. #else
  130.     gp_get_realtime(pdt);    /* Use an approximation on other hosts.  */
  131. #endif
  132. }
  133.  
  134. /* ------ Screen management ------ */
  135.  
  136. /* Get the environment variable that specifies the display to use. */
  137. const char *
  138. gp_getenv_display(void)
  139. {    return getenv("DISPLAY");
  140. }
  141.  
  142. /* ------ Printer accessing ------ */
  143.  
  144. /* Open a connection to a printer.  A null file name means use the */
  145. /* standard printer connected to the machine, if any. */
  146. /* "|command" opens an output pipe. */
  147. /* Return NULL if the connection could not be opened. */
  148. FILE *
  149. gp_open_printer(char *fname, int binary_mode)
  150. {    return
  151.       (strlen(fname) == 0 ?
  152.        gp_open_scratch_file(gp_scratch_file_name_prefix, fname, "w") :
  153.        fname[0] == '|' ?
  154.        popen(fname + 1, "w") :
  155.        fopen(fname, "w"));
  156. }
  157.  
  158. /* Close the connection to the printer. */
  159. void
  160. gp_close_printer(FILE *pfile, const char *fname)
  161. {    if ( fname[0] == '|' )
  162.         pclose(pfile);
  163.     else
  164.         fclose(pfile);
  165. }
  166.